adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / FindVariablesAndInlineFunctions Method / FindVariablesAndInlineFunctions(TokenSearchOptions,ADTObject[],ReadOnlyCollection<TokenFindResult>,MessageCollection) Method
Options defining the behavior of the search/replace operation
Collection of objects to search in. See Remarks.
Returns the results of the operation
Returns any error messages encountered during the operation.


In This Topic
    FindVariablesAndInlineFunctions(TokenSearchOptions,ADTObject[],ReadOnlyCollection<TokenFindResult>,MessageCollection) Method
    In This Topic
    Searches for job variables (definition and uses) and inline function (uses)
    Syntax
    'Declaration
     
    
    <RequiredVersionAttribute(5, 
       0, 
       0, 
       0)>
    Public Overloads Sub FindVariablesAndInlineFunctions( _
       ByVal options As TokenSearchOptions, _
       ByVal objectsToSearch() As ADTObject, _
       ByRef results As ReadOnlyCollection(Of TokenFindResult), _
       ByRef messages As MessageCollection _
    ) 

    Parameters

    options
    Options defining the behavior of the search/replace operation
    objectsToSearch
    Collection of objects to search in. See Remarks.
    results
    Returns the results of the operation
    messages
    Returns any error messages encountered during the operation.
    Remarks

    This overload searches the objects in objectsToSearch (and any dependencies). The search is based on the current state of the object (on the client) and therefore takes into account changes that have not yet been saved to the server.

    The search also includes the classes and objects specified in IncludeClasses, IncludeObjects, and ExcludeObjects members of the options.

    See Also